home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 1999 November / cd joystick no109 novembre 1999.iso / Data / sharewares / utilitaires / XQXSET50.ZIP / _SETUP.1 / XQ WTS 1.xpl < prev    next >
Text File  |  1999-06-07  |  1KB  |  40 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Network\Terminal Server"
  5. "NAME"="Mouse Movement"
  6. "VERSION"="1.0"
  7. "LANGUAGE"="VBScript"
  8. "WARNING"="1"
  9. "TEXT 1"="Send Interval (ms)"
  10. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  11. "AUTHOR"="Xteq Systems"
  12. "DESCRIPTION 1"="The client program for Windows Terminal Server (WTS) normally send the mouse position all 100 ms to the server."
  13. "DESCRIPTION 2"="In some cases, this can lead to chaotic mouse movemments on the server. Setting this interval to 10 ms will correct this, but also uses more bandwidth."
  14. "COMMENT 1"="MS KB: Q196460"
  15.  
  16. sP="HKCU\Software\Microsoft\Terminal Server Client\"
  17. sV1="Min Send Interval"
  18. SUB Plugin_Initialize
  19.  if RegPathExists(sP) then
  20.     i=RegReadValue(sP & sV1)
  21.     SetUiElement 1,i
  22.  else
  23.     Disable
  24.  end if
  25. END SUB
  26.  
  27. 'Called when the Plugin should validate the Data the user has entered
  28. SUB Plugin_CheckData(ElementIndex)
  29. END SUB
  30.  
  31. 'Called when the Plugin should apply the changes
  32. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  33.   i=GetUIElement(1)
  34.   Call RegWriteValue(sp & sv1,i,2)
  35. END SUB
  36.  
  37. 'Called when the Plugin is about to be removed from memory
  38. SUB Plugin_Terminate
  39. END SUB
  40.